home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / netinclude / rpc / pmap_prot.h < prev    next >
C/C++ Source or Header  |  1994-03-09  |  4KB  |  103 lines

  1. /*
  2.  * $Id: pmap_prot.h,v 1.2 1993/11/10 00:46:07 jraja Exp $
  3.  *
  4.  * $Log: pmap_prot.h,v $
  5.  * Revision 1.2  1993/11/10  00:46:07  jraja
  6.  * ANSI prototypes.
  7.  *
  8.  */
  9. /* @(#)pmap_prot.h    2.1 88/07/29 4.0 RPCSRC; from 1.14 88/02/08 SMI */
  10. /*
  11.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  12.  * unrestricted use provided that this legend is included on all tape
  13.  * media and as a part of the software program in whole or part.  Users
  14.  * may copy or modify Sun RPC without charge, but are not authorized
  15.  * to license or distribute it to anyone else except as part of a product or
  16.  * program developed by the user.
  17.  * 
  18.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  19.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  20.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  21.  * 
  22.  * Sun RPC is provided with no support and without any obligation on the
  23.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  24.  * modification or enhancement.
  25.  * 
  26.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  27.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  28.  * OR ANY PART THEREOF.
  29.  * 
  30.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  31.  * or profits or other special, indirect and consequential damages, even if
  32.  * Sun has been advised of the possibility of such damages.
  33.  * 
  34.  * Sun Microsystems, Inc.
  35.  * 2550 Garcia Avenue
  36.  * Mountain View, California  94043
  37.  */
  38.  
  39. /*
  40.  * pmap_prot.h
  41.  * Protocol for the local binder service, or pmap.
  42.  *
  43.  * Copyright (C) 1984, Sun Microsystems, Inc.
  44.  *
  45.  * The following procedures are supported by the protocol:
  46.  *
  47.  * PMAPPROC_NULL() returns ()
  48.  *     takes nothing, returns nothing
  49.  *
  50.  * PMAPPROC_SET(struct pmap) returns (bool_t)
  51.  *     TRUE is success, FALSE is failure.  Registers the tuple
  52.  *    [prog, vers, prot, port].
  53.  *
  54.  * PMAPPROC_UNSET(struct pmap) returns (bool_t)
  55.  *    TRUE is success, FALSE is failure.  Un-registers pair
  56.  *    [prog, vers].  prot and port are ignored.
  57.  *
  58.  * PMAPPROC_GETPORT(struct pmap) returns (long unsigned).
  59.  *    0 is failure.  Otherwise returns the port number where the pair
  60.  *    [prog, vers] is registered.  It may lie!
  61.  *
  62.  * PMAPPROC_DUMP() RETURNS (struct pmaplist *)
  63.  *
  64.  * PMAPPROC_CALLIT(unsigned, unsigned, unsigned, string<>)
  65.  *     RETURNS (port, string<>);
  66.  * usage: encapsulatedresults = PMAPPROC_CALLIT(prog, vers, proc, encapsulatedargs);
  67.  *     Calls the procedure on the local machine.  If it is not registered,
  68.  *    this procedure is quite; ie it does not return error information!!!
  69.  *    This procedure only is supported on rpc/udp and calls via
  70.  *    rpc/udp.  This routine only passes null authentication parameters.
  71.  *    This file has no interface to xdr routines for PMAPPROC_CALLIT.
  72.  *
  73.  * The service supports remote procedure calls on udp/ip or tcp/ip socket 111.
  74.  */
  75.  
  76. #define PMAPPORT        ((u_short)111)
  77. #define PMAPPROG        ((u_long)100000)
  78. #define PMAPVERS        ((u_long)2)
  79. #define PMAPVERS_PROTO        ((u_long)2)
  80. #define PMAPVERS_ORIG        ((u_long)1)
  81. #define PMAPPROC_NULL        ((u_long)0)
  82. #define PMAPPROC_SET        ((u_long)1)
  83. #define PMAPPROC_UNSET        ((u_long)2)
  84. #define PMAPPROC_GETPORT    ((u_long)3)
  85. #define PMAPPROC_DUMP        ((u_long)4)
  86. #define PMAPPROC_CALLIT        ((u_long)5)
  87.  
  88. struct pmap {
  89.     long unsigned pm_prog;
  90.     long unsigned pm_vers;
  91.     long unsigned pm_prot;
  92.     long unsigned pm_port;
  93. };
  94.  
  95. extern bool_t XDRFUN xdr_pmap(XDR * xdrs, struct pmap * regs);
  96.  
  97. struct pmaplist {
  98.     struct pmap    pml_map;
  99.     struct pmaplist *pml_next;
  100. };
  101.  
  102. extern bool_t XDRFUN xdr_pmaplist(XDR * xdrs, struct pmaplist ** rp);
  103.